home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2003 #12 / Amiga Plus CD - 2003 - No. 12.iso / AmigaPlus / Tools / Virus / MILL / _makedisk next >
Text File  |  2003-11-27  |  2KB  |  58 lines

  1.  
  2. ; This script should be useful for people who want to prepare
  3. ; boot-disk with MILL.
  4. ; It just gathers all required files in 'ram:disk/' directory.
  5. ;
  6. ; COMPATIBILITY NOTE:
  7. ; amigaguide.library from OS3.0+ internally use datatypes.
  8. ; Just get somewhere older version or use Your Workbench disk
  9. ; to boot (surely You have one that runs for instance in DblPal
  10. ; if needed).
  11. ;
  12. ; Free disk-space problem: first files to delete
  13. ; are LIBS:commodities.library and some LIBS:xfd/ files...
  14.  
  15. ; Free memory problem: MILL has been designed for at least 4MB
  16. ; of FastMem however it works even on non expanded A1200.
  17. ; Suggested solution is already above. Avoid AddXXk commands!
  18. ; Anyway menus of MILL are black in 2 color Workbench!
  19.  
  20.  
  21. failat 20
  22.  
  23. cd ""
  24.  
  25. makedir ram:disk ram:disk/libs ram:disk/libs/xad ram:disk/libs/xfd
  26. makedir ram:disk/s ram:disk/c
  27.  
  28. copy LIBS:68040.library to ram:disk/libs/
  29. copy LIBS:asl.library to ram:disk/libs/
  30. copy LIBS:xvs.library to ram:disk/libs/
  31. copy LIBS:amigaguide.library to ram:disk/libs/
  32. copy LIBS:commodities.library to ram:disk/libs/
  33. copy LIBS:xadmaster.library to ram:disk/libs
  34. copy LIBS:xfdmaster.library to ram:disk/libs
  35. copy LIBS:xad/lzx to ram:disk/libs/xad/
  36. copy LIBS:xfd/ to ram:disk/libs/xfd/ QUIET
  37.  
  38. copy C:setpatch to ram:disk/c/
  39. copy C:assign to ram:disk/c/
  40. copy C:LoadWB to ram:disk/c/
  41.  
  42. copy mill to ram:disk/
  43. copy mill.info to ram:disk/
  44. copy mill.key to ram:disk/
  45. copy notifier to ram:disk/
  46. copy integrity to ram:disk/
  47. copy watchdog to ram:disk/
  48.  
  49. echo "SetPatch QUIET" >ram:disk/s/startup-sequence
  50. echo "Assign ENV: RAM:" >>ram:disk/s/startup-sequence
  51. echo "Assign ENVARC: RAM:" >>ram:disk/s/startup-sequence
  52. echo "LoadWB" >>ram:disk/s/startup-sequence
  53. echo "EndCLI" >>ram:disk/s/startup-sequence
  54.  
  55. echo "Required files are in 'RAM:disk/' directory..."
  56.  
  57. wait 10
  58.